home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 1.iso / icons / animator.zip / ABOUT.C next >
C/C++ Source or Header  |  1993-02-01  |  435b  |  17 lines

  1. #include "animator.h"
  2.  
  3. //////////////////////////////////////////////////////////////////////////
  4. // About - Window procedure for the about box shown when choosing 
  5. //         File About...
  6. //////////////////////////////////////////////////////////////////////////
  7.  
  8. BOOL _export CALLBACK About(DLGPROC_PARAMS)
  9. {
  10.     if (uMsg == WM_COMMAND && wParam == IDOK)
  11.     {
  12.         EndDialog (hDlg, TRUE);
  13.         return TRUE;
  14.     }
  15.     return FALSE;
  16. }
  17.